home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 2000 October / Software of the Month - Ultimate Collection Shareware 277.iso / pc / PROGRAMS / UTILITY / WINLINUX / DATA1.CAB / programs_-_gimp / SHARE / GIMP / GIMPRC < prev    next >
Text File  |  1999-09-17  |  8KB  |  210 lines

  1. # This is the system-wide gimprc file.  Any change made in this file
  2. # will affect all users of this system, provided that they are not
  3. # overriding the default values in their personal gimprc file.
  4. #
  5. # Lines that start with a '#' are comments.
  6. # Blank lines are ignored.
  7.  
  8. # The variable gimp_dir is set to either the interned value
  9. # .gimp or the environment variable GIMP_DIRECTORY.  If
  10. # the path in GIMP_DIRECTORY is relative, it is considered
  11. # relative to your home directory.
  12.  
  13. (prefix "/usr/local/gimp")
  14. (exec_prefix "${prefix}")
  15. (gimp_data_dir "${prefix}/share/gimp")
  16. (gimp_plugin_dir "${exec_prefix}/lib/gimp/1.0")
  17.  
  18. # Set the temporary storage directory...files will appear here
  19. # during the course of running the gimp.  Most files will disappear
  20. # when the gimp exits, but some files are likely to remain,
  21. # such as working palette files, so it is best if this directory
  22. # not be one that is shared by other users or is cleared on machine
  23. # reboot such as /tmp.
  24. (temp-path "${gimp_dir}/tmp")
  25.  
  26. # Set the swap file location. The gimp uses a tile based memory
  27. # allocation scheme. The swap file is used to quickly and easily
  28. # swap files out to disk and back in. Be aware that the swap file
  29. # can easily get very large if the gimp is used with large images.
  30. # Also, things can get horribly slow if the swap file is created on 
  31. # a directory that is mounted over NFS.  For these reasons, it may 
  32. # be desirable to put your swap file in "/tmp".
  33. (swap-path "${gimp_dir}")
  34.  
  35. # Set the brush search path...this path will be searched for valid
  36. #  brushes at startup.
  37. (brush-path "${gimp_dir}/brushes:${gimp_data_dir}/brushes")
  38.  
  39. # Specify a default brush. If none is specified it defaults to the
  40. #  "1circle.gbr" brush which is just a single pixel sized brush.
  41. #  The brush is searched for in the brush path.
  42. (default-brush "19fcircle.gbr")
  43.  
  44. # Set the pattern search path...this path will be searched for valid
  45. #  patterns at startup.
  46. (pattern-path "${gimp_dir}/patterns:${gimp_data_dir}/patterns")
  47.  
  48. # Specify a default pattern.
  49. #  The pattern is searched for in the specified pattern paths.
  50. (default-pattern "wood2.pat")
  51.  
  52. # Set the palette search path...this path will be searched for valid
  53. #  palettes at startup.
  54. (palette-path "${gimp_dir}/palettes")
  55.  
  56. # Specify a default palette.
  57. #  The pattern is searched for in the specified pattern paths.
  58. (default-palette "Default")
  59.  
  60. # Set the gradient search path...this path will be searched for valid
  61. #  gradients at startup.
  62. (gradient-path "${gimp_dir}/gradients:${gimp_data_dir}/gradients")
  63.  
  64. # Specify a default gradient.
  65. #  The gradient is searched for in the specified gradient paths.
  66. (default-gradient "German_flag_smooth")
  67.  
  68. # Set the plug-in search path...this path will be searched for
  69. #  plug-ins when the plug-in is run.
  70. (plug-in-path "${gimp_dir}/plug-ins:${gimp_dir}/plug-ins/script-fu:${gimp_plugin_dir}/plug-ins")
  71.  
  72. # Set the path for the script-fu plug-in.  This value is ignored by
  73. #  the GIMP if the script-fu plug-in is never run.
  74. (script-fu-path "${gimp_dir}/scripts:${gimp_data_dir}/scripts")
  75.  
  76.  
  77. # The tile cache is used to make sure the gimp doesn't thrash
  78. # tiles between memory and disk. Setting this value higher will
  79. # cause the gimp to use less swap space, but will also cause
  80. # the gimp to use more memory. Conversely, a smaller cache size
  81. # causes the gimp to use more swap space and less memory.
  82. # Note: the gimp will still run even if `tile-cache-size' is
  83. # set to 0. The actual size can contain a suffix of 'm', 'M',
  84. # 'k', 'K', 'b' or 'B', which makes the gimp interpret the
  85. # size as being specified in megabytes, kilobytes and bytes
  86. # respectively. If no suffix is specified the size defaults to
  87. # being specified in kilobytes.
  88. (tile-cache-size 10m)
  89.  
  90. # Speed of marching ants in the selection outline
  91. #  this value is in milliseconds
  92. #  (less time indicates faster marching)
  93. (marching-ants-speed 300)
  94.  
  95. # Set the number of operations kept on the undo stack
  96. (undo-levels 5)
  97.  
  98. # Set the color-cube resource for dithering on 8-bit displays
  99. #  The 4 values stand for Shades of red, green, blue and grays
  100. #  Multiplying the # of shades of each primary color yields
  101. #  the total number of colors that will be allocated from the
  102. #  gimp colormap.  This number should not exceed 256.  Most of the
  103. #  colors remaining after the allocation of the colorcube
  104. #  will be left to the system palette in an effort to reduce
  105. #  colormap "flashing".
  106. (color-cube 6 6 4 24)
  107.  
  108. # Install a GIMP colormap by default -- only for 8-bit displays
  109. # (install-colormap)
  110.  
  111. # Specify that marching ants for selected regions will be drawn
  112. #  with colormap cycling as oposed to redrawing with different stipple masks
  113. #  this color cycling option works only with 8-bit displays
  114. # (colormap-cycling)
  115.  
  116. # Tools such as fuzzy-select and bucket fill find regions based on a
  117. #  seed-fill algorithm.  The seed fill starts at the intially selected
  118. #  pixel and progresses in all directions until the difference of pixel
  119. #  intensity from the original is greater than a specified threshold
  120. #  ==> This value represents the default threshold
  121. (default-threshold 15)
  122.  
  123. # There is always a tradeoff between memory usage and speed.  In most
  124. #  cases, the GIMP opts for speed over memory.  However, if memory is
  125. #  a big issue, set stingy-memory-use
  126. # (stingy-memory-use)
  127.  
  128. # When zooming into and out of images, this option enables the
  129. #  automatic resizing of windows
  130. # (allow-resize-windows)
  131.  
  132. # Context-dependent cursors are cool.  They are enabled by default.
  133. #  However, they require overhead that you may want to do without.
  134. #  Uncomment this line to disable them.
  135. # (no-cursor-updating)
  136.  
  137. # Layer preview sizes:
  138. #  none:    no previews in layers dialog/layer selector
  139. #  small:   32x32
  140. #  medium:  64x64
  141. #  large:   128x128
  142. #  #:       #x#
  143. (preview-size small)
  144.  
  145. # Tooltips
  146. #  Comment this out to disable the tooltips in the toolbox
  147. # (dont-show-tool-tips)
  148.  
  149. # Controlling ruler visibility
  150. #  The default behavior is for rulers to be ON
  151. #  This can also be toggled with the View->Show Rulers command or shift+control+r
  152. # (dont-show-rulers)
  153.  
  154. # Ruler units
  155. #  The units of rulers can be one of: (pixels inches centimeters)
  156. #  The default is pixels
  157. (ruler-units pixels)
  158.  
  159. # Disable auto saving
  160. #  Auto saving is not yet implemented! Nothing will be auto-saved, no matter
  161. #  how you set this here.  
  162. #  Just uncomment the line below...
  163. # (dont-auto-save)
  164.  
  165. # Disable confirmation before closing an image without saving
  166. #  Just uncomment the next line
  167. # (dont-confirm-on-close)
  168.  
  169. # Setting the level of interpolation
  170. #  Uncommenting this line will enable cubic interpolation.
  171. #  By default, GIMP uses linear interpolation, which is faster, but has poorer quality
  172. # (cubic-interpolation)
  173.  
  174. # Set the gamma correction values for the display
  175. #  1.0 corresponds to no gamma correction.  For most displays,
  176. #  gamma correction should be set to between 2.0 and 2.6
  177. #  Run the utility "gamma_correct" to determine appropriate values
  178. #  for your display.
  179. #
  180. # One important item to keep in mind:  Many images that you might
  181. #  get from outside sources will in all likelihood already be
  182. #  gamma-corrected.  In these cases, the image will look washed-out
  183. #  if the gimp has gamma-correction turned on.  If you are going
  184. #  to work with images of this sort, turn gamma correction off
  185. #  by removing this line, or setting the values to 1.0.
  186. #  gamma-correction 1.0
  187. #  gamma-correction 2.0
  188. #                 ___
  189. (gamma-correction 1.0)
  190.  
  191. # Set the manner in which transparency is displayed in images
  192. #  Transparency type can be one of:
  193. #    0: Light Checks
  194. #    1: Mid-Tone Checks
  195. #    2: Dark Checks
  196. #    3: White Only
  197. #    4: Gray Only
  198. #    5: Black Only
  199. #  Check size can be one of:
  200. #    0: Small
  201. #    1: Medium
  202. #    2: Large
  203. (transparency-type 1)
  204. (transparency-size 2)
  205.  
  206. # gfig pattern directory
  207. (gfig-path "${gimp_dir}/gfig:${gimp_data_dir}/gfig")
  208.  
  209. # [end of file]
  210.